Golang : How to force compile or remove object files first before rebuild?
Problem :
You want to use rebuild or refresh your Golang program every time there is a change on any of the source files in your project. Basically, you want to remove the .a
(object) files "first" in the pkg
directory in your workspace each time when there is a rebuild. How to do that ?
Solutions :
In the go build
command, there is a -a
flag that you can use to refresh/rebuild or recompile everything packages that are already up-to-date.
For example :
>go build -a program-name
or you can issue the command
>go clean
first before executing go build
See also : Golang : Build and compile multiple source files
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+20.9k Golang : Underscore or snake_case to camel case example
+10.8k Android Studio : Checkbox for user to select options example
+19.5k Golang : How to Set or Add Header http.ResponseWriter?
+6.8k Golang : Get expvar(export variables) to work with multiplexer
+11.6k Get form post value in Go
+17.4k Golang : Check if IP address is version 4 or 6
+7.7k Golang : get the current working directory of a running program
+11.7k Golang : How to detect a server/machine network interface capabilities?
+6.9k Nginx : Password protect a directory/folder
+6.1k Golang : Convert Chinese UTF8 characters to Pin Yin
+9.6k Golang : Quadratic example
+11.6k Golang : Simple file scaning and remove virus example